home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- BackColor = &H80000008&
- Caption = "Form1"
- ClientHeight = 6795
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 11355
- BeginProperty Font
- Name = "Terminal"
- Size = 9
- Charset = 255
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- LinkTopic = "Form1"
- ScaleHeight = 453
- ScaleMode = 3 'Pixel
- ScaleWidth = 757
- StartUpPosition = 3 'Windows Default
- WindowState = 2 'Maximized
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- ' dont just rip me off! give me some help if ya can
- ' Not going into the technaclitys of this its To Difficult to explian.
- 'Email :familae@familae.screaming.net
- Private Irc_Window As New ChanWindow
- Private Sub Form_Click()
- Close #1
- Open "C:\torment\txt\DRAGON.txt" For Input As #1
- Dim data As String
- Line Input #1, data
- Irc_Window.Out Trim(data)
- Irc_Window.ScrWindowup Me, 15
- DoEvents
- Loop While Not EOF(1)
- Irc_Window.ScrWindowup Me, 20
- Irc_Window.Out "
- 4,0Hello
- 7 This is a MIRC Complient Text Parser
- 7 :) P
- Irc_Window.ScrWindowup Me, 27
- End Sub
- Private Sub Form_Load()
- Set Irc_Window.OwnerForm = Form1
- End Sub
- Private Sub Form_Paint()
- Irc_Window.Refresh
- End Sub
-